home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / exec / obtainquickvector.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  862 b   |  48 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: obtainquickvector.c,v 1.2 1996/08/13 13:56:04 digulla Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "exec_intern.h"
  8.  
  9. /*****************************************************************************
  10.  
  11.     NAME */
  12.     #include <clib/exec_protos.h>
  13.  
  14.     __AROS_LH1(ULONG, ObtainQuickVector,
  15.  
  16. /*  SYNOPSIS */
  17.     __AROS_LHA(APTR, interruptCode, A0),
  18.  
  19. /*  LOCATION */
  20.     struct ExecBase *, SysBase, 131, Exec)
  21.  
  22. /*  FUNCTION
  23.  
  24.     INPUTS
  25.  
  26.     RESULT
  27.  
  28.     NOTES
  29.  
  30.     EXAMPLE
  31.  
  32.     BUGS
  33.  
  34.     SEE ALSO
  35.  
  36.     INTERNALS
  37.  
  38.     HISTORY
  39.     29-10-95    digulla automatically created from
  40.                 exec_lib.fd and clib/exec_protos.h
  41.  
  42. *****************************************************************************/
  43. {
  44.     __AROS_FUNC_INIT
  45.     __AROS_BASE_EXT_DECL(struct ExecBase *,SysBase)
  46.     __AROS_FUNC_EXIT
  47. } /* ObtainQuickVector */
  48.